🎖️GitЯра🎖️
Commit 3f64b5a0ecf7cc9ed6e81068ab3067033a7f74f4
Parents : 5c3b225
Author : James Rich <2199651+jamesarich@users.noreply.github.com>
Signature : Signature validation error
Date : 2026-05-19T16:11:13-07:00
Committer : GitHub <noreply@github.com>
Date : 2026-05-19T18:11:13-05:00
ci: reduce flatpak source generation thrash (#5513)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Changes
2 files changed, 4 insertions(+), 4 deletions(-)
Diff
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4f12cf5c8a..8b795afb5d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -373,7 +373,7 @@ jobs:
- name: Generate Flatpak Sources
run: >
./gradlew :build-logic:convention:flatpakGradleGenerator flatpakGradleGenerator
- --no-configuration-cache --refresh-dependencies --no-parallel
+ --no-configuration-cache
- name: List Flatpak source files
run: ls -R flatpak-sources-*.json
diff --git a/settings.gradle.kts b/settings.gradle.kts
index b3aeb19e6a..5ae98fe868 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -18,8 +18,6 @@
pluginManagement {
includeBuild("build-logic")
repositories {
- mavenCentral()
- gradlePluginPortal()
google {
content {
includeGroupByRegex("com\\.android.*")
@@ -27,6 +25,8 @@ pluginManagement {
includeGroupByRegex("androidx.*")
}
}
+ mavenCentral()
+ gradlePluginPortal()
maven { url = uri("./offline-repository") }
}
}
@@ -43,7 +43,6 @@ dependencyResolutionManagement {
repositories {
// Only enable mavenLocal for local JitPack testing; never in CI.
if (providers.gradleProperty("useMavenLocal").isPresent) mavenLocal()
- mavenCentral()
google {
content {
includeGroupByRegex("com\\.android.*")
@@ -51,6 +50,7 @@ dependencyResolutionManagement {
includeGroupByRegex("androidx.*")
}
}
+ mavenCentral()
maven {
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
mavenContent { snapshotsOnly() }
Served by rngit 1.5.4 - Generated in 0.05s